void draw_text(int x,int y,char *text)
Parameter | Type | Description |
---|---|---|
x | int | x screen coordinate for text |
y | int | y screen coordinate for text |
text | char * | text string |
None
This function draws a string of text at the specified screen co-ordinates. The text is drawn as a set of texture mapped faces using the selected font texture in flyEngine fontspic member variable. Before using this function, text mode must be started using the start_text_mode function.